home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1997 #3 / Amiga Plus CD - 1997 - No. 03.iso / pd / programmierung / vbcc / machines / amiga68k / libsrc / stdio / setbuf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-06-17  |  111 b   |  8 lines

  1. #include <stdio.h>
  2.  
  3. void setbuf(FILE *stream,char *buf)
  4. {
  5.     setvbuf(stream,buf,buf?_IOFBF:_IONBF,BUFSIZ);
  6. }
  7.  
  8.